import { Suspense } from "react" import { Shell } from "@/components/shell" import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" import { InformationButton } from "@/components/information/information-button" import { PcrTable } from "@/lib/pcr/table/pcr-table"; import { getPcrPoList } from "@/lib/pcr/service"; export const metadata = { title: "PCR 관리", description: "Purchase Change Request를 생성하고 관리할 수 있습니다.", }; async function PcrTableWrapper() { // 기본 데이터 조회 (EvcP용 - 모든 데이터 조회) const tableData = await getPcrPoList({ page: 1, perPage: 10, }); return ; } export default function PcrPage() { return ( {/* ═══════════════════════════════════════════════════════════════ */} {/* 페이지 헤더 */} {/* ═══════════════════════════════════════════════════════════════ */} PCR 관리 Purchase Change Request를 생성하고 관리할 수 있습니다. PCR 승인 상태, 변경 구분, PO/계약 정보 등을 확인할 수 있습니다. {/* ═══════════════════════════════════════════════════════════════ */} {/* 메인 테이블 */} {/* ═══════════════════════════════════════════════════════════════ */} } > ); }
Purchase Change Request를 생성하고 관리할 수 있습니다. PCR 승인 상태, 변경 구분, PO/계약 정보 등을 확인할 수 있습니다.